Left Termination of the query pattern delete_in_3(g, a, g) w.r.t. the given Prolog program could successfully be proven:



Prolog
  ↳ PrologToPiTRSProof

Clauses:

delete(X, tree(X, void, Right), Right).
delete(X, tree(X, Left, void), Left).
delete(X, tree(X, Left, Right), tree(Y, Left, Right1)) :- delmin(Right, Y, Right1).
delete(X, tree(Y, Left, Right), tree(Y, Left1, Right)) :- ','(less(X, Y), delete(X, Left, Left1)).
delete(X, tree(Y, Left, Right), tree(Y, Left, Right1)) :- ','(less(Y, X), delete(X, Right, Right1)).
delmin(tree(Y, void, Right), Y, Right).
delmin(tree(X, Left, X1), Y, tree(X, Left1, X2)) :- delmin(Left, Y, Left1).
less(0, s(X)).
less(s(X), s(Y)) :- less(X, Y).

Queries:

delete(g,a,g).

We use the technique of [30].Transforming Prolog into the following Term Rewriting System:
Pi-finite rewrite system:
The TRS R consists of the following rules:

delete_in(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U4(X, Y, Left, Right, Right1, less_in(Y, X))
less_in(s(X), s(Y)) → U7(X, Y, less_in(X, Y))
less_in(0, s(X)) → less_out(0, s(X))
U7(X, Y, less_out(X, Y)) → less_out(s(X), s(Y))
U4(X, Y, Left, Right, Right1, less_out(Y, X)) → U5(X, Y, Left, Right, Right1, delete_in(X, Right, Right1))
delete_in(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U2(X, Y, Left, Right, Left1, less_in(X, Y))
U2(X, Y, Left, Right, Left1, less_out(X, Y)) → U3(X, Y, Left, Right, Left1, delete_in(X, Left, Left1))
delete_in(X, tree(X, Left, Right), tree(Y, Left, Right1)) → U1(X, Left, Right, Y, Right1, delmin_in(Right, Y, Right1))
delmin_in(tree(X, Left, X1), Y, tree(X, Left1, X2)) → U6(X, Left, X1, Y, Left1, X2, delmin_in(Left, Y, Left1))
delmin_in(tree(Y, void, Right), Y, Right) → delmin_out(tree(Y, void, Right), Y, Right)
U6(X, Left, X1, Y, Left1, X2, delmin_out(Left, Y, Left1)) → delmin_out(tree(X, Left, X1), Y, tree(X, Left1, X2))
U1(X, Left, Right, Y, Right1, delmin_out(Right, Y, Right1)) → delete_out(X, tree(X, Left, Right), tree(Y, Left, Right1))
delete_in(X, tree(X, Left, void), Left) → delete_out(X, tree(X, Left, void), Left)
delete_in(X, tree(X, void, Right), Right) → delete_out(X, tree(X, void, Right), Right)
U3(X, Y, Left, Right, Left1, delete_out(X, Left, Left1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U5(X, Y, Left, Right, Right1, delete_out(X, Right, Right1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
delete_in(x1, x2, x3)  =  delete_in(x1, x3)
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U4(x1, x2, x3, x4, x5, x6)  =  U4(x1, x5, x6)
less_in(x1, x2)  =  less_in(x1, x2)
s(x1)  =  s(x1)
U7(x1, x2, x3)  =  U7(x3)
0  =  0
less_out(x1, x2)  =  less_out
U5(x1, x2, x3, x4, x5, x6)  =  U5(x6)
U2(x1, x2, x3, x4, x5, x6)  =  U2(x1, x5, x6)
U3(x1, x2, x3, x4, x5, x6)  =  U3(x6)
U1(x1, x2, x3, x4, x5, x6)  =  U1(x6)
delmin_in(x1, x2, x3)  =  delmin_in(x2, x3)
U6(x1, x2, x3, x4, x5, x6, x7)  =  U6(x7)
void  =  void
delmin_out(x1, x2, x3)  =  delmin_out
delete_out(x1, x2, x3)  =  delete_out

Infinitary Constructor Rewriting Termination of PiTRS implies Termination of Prolog



↳ Prolog
  ↳ PrologToPiTRSProof
PiTRS
      ↳ DependencyPairsProof

Pi-finite rewrite system:
The TRS R consists of the following rules:

delete_in(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U4(X, Y, Left, Right, Right1, less_in(Y, X))
less_in(s(X), s(Y)) → U7(X, Y, less_in(X, Y))
less_in(0, s(X)) → less_out(0, s(X))
U7(X, Y, less_out(X, Y)) → less_out(s(X), s(Y))
U4(X, Y, Left, Right, Right1, less_out(Y, X)) → U5(X, Y, Left, Right, Right1, delete_in(X, Right, Right1))
delete_in(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U2(X, Y, Left, Right, Left1, less_in(X, Y))
U2(X, Y, Left, Right, Left1, less_out(X, Y)) → U3(X, Y, Left, Right, Left1, delete_in(X, Left, Left1))
delete_in(X, tree(X, Left, Right), tree(Y, Left, Right1)) → U1(X, Left, Right, Y, Right1, delmin_in(Right, Y, Right1))
delmin_in(tree(X, Left, X1), Y, tree(X, Left1, X2)) → U6(X, Left, X1, Y, Left1, X2, delmin_in(Left, Y, Left1))
delmin_in(tree(Y, void, Right), Y, Right) → delmin_out(tree(Y, void, Right), Y, Right)
U6(X, Left, X1, Y, Left1, X2, delmin_out(Left, Y, Left1)) → delmin_out(tree(X, Left, X1), Y, tree(X, Left1, X2))
U1(X, Left, Right, Y, Right1, delmin_out(Right, Y, Right1)) → delete_out(X, tree(X, Left, Right), tree(Y, Left, Right1))
delete_in(X, tree(X, Left, void), Left) → delete_out(X, tree(X, Left, void), Left)
delete_in(X, tree(X, void, Right), Right) → delete_out(X, tree(X, void, Right), Right)
U3(X, Y, Left, Right, Left1, delete_out(X, Left, Left1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U5(X, Y, Left, Right, Right1, delete_out(X, Right, Right1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
delete_in(x1, x2, x3)  =  delete_in(x1, x3)
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U4(x1, x2, x3, x4, x5, x6)  =  U4(x1, x5, x6)
less_in(x1, x2)  =  less_in(x1, x2)
s(x1)  =  s(x1)
U7(x1, x2, x3)  =  U7(x3)
0  =  0
less_out(x1, x2)  =  less_out
U5(x1, x2, x3, x4, x5, x6)  =  U5(x6)
U2(x1, x2, x3, x4, x5, x6)  =  U2(x1, x5, x6)
U3(x1, x2, x3, x4, x5, x6)  =  U3(x6)
U1(x1, x2, x3, x4, x5, x6)  =  U1(x6)
delmin_in(x1, x2, x3)  =  delmin_in(x2, x3)
U6(x1, x2, x3, x4, x5, x6, x7)  =  U6(x7)
void  =  void
delmin_out(x1, x2, x3)  =  delmin_out
delete_out(x1, x2, x3)  =  delete_out


Using Dependency Pairs [1,30] we result in the following initial DP problem:
Pi DP problem:
The TRS P consists of the following rules:

DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U41(X, Y, Left, Right, Right1, less_in(Y, X))
DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → LESS_IN(Y, X)
LESS_IN(s(X), s(Y)) → U71(X, Y, less_in(X, Y))
LESS_IN(s(X), s(Y)) → LESS_IN(X, Y)
U41(X, Y, Left, Right, Right1, less_out(Y, X)) → U51(X, Y, Left, Right, Right1, delete_in(X, Right, Right1))
U41(X, Y, Left, Right, Right1, less_out(Y, X)) → DELETE_IN(X, Right, Right1)
DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U21(X, Y, Left, Right, Left1, less_in(X, Y))
DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → LESS_IN(X, Y)
U21(X, Y, Left, Right, Left1, less_out(X, Y)) → U31(X, Y, Left, Right, Left1, delete_in(X, Left, Left1))
U21(X, Y, Left, Right, Left1, less_out(X, Y)) → DELETE_IN(X, Left, Left1)
DELETE_IN(X, tree(X, Left, Right), tree(Y, Left, Right1)) → U11(X, Left, Right, Y, Right1, delmin_in(Right, Y, Right1))
DELETE_IN(X, tree(X, Left, Right), tree(Y, Left, Right1)) → DELMIN_IN(Right, Y, Right1)
DELMIN_IN(tree(X, Left, X1), Y, tree(X, Left1, X2)) → U61(X, Left, X1, Y, Left1, X2, delmin_in(Left, Y, Left1))
DELMIN_IN(tree(X, Left, X1), Y, tree(X, Left1, X2)) → DELMIN_IN(Left, Y, Left1)

The TRS R consists of the following rules:

delete_in(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U4(X, Y, Left, Right, Right1, less_in(Y, X))
less_in(s(X), s(Y)) → U7(X, Y, less_in(X, Y))
less_in(0, s(X)) → less_out(0, s(X))
U7(X, Y, less_out(X, Y)) → less_out(s(X), s(Y))
U4(X, Y, Left, Right, Right1, less_out(Y, X)) → U5(X, Y, Left, Right, Right1, delete_in(X, Right, Right1))
delete_in(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U2(X, Y, Left, Right, Left1, less_in(X, Y))
U2(X, Y, Left, Right, Left1, less_out(X, Y)) → U3(X, Y, Left, Right, Left1, delete_in(X, Left, Left1))
delete_in(X, tree(X, Left, Right), tree(Y, Left, Right1)) → U1(X, Left, Right, Y, Right1, delmin_in(Right, Y, Right1))
delmin_in(tree(X, Left, X1), Y, tree(X, Left1, X2)) → U6(X, Left, X1, Y, Left1, X2, delmin_in(Left, Y, Left1))
delmin_in(tree(Y, void, Right), Y, Right) → delmin_out(tree(Y, void, Right), Y, Right)
U6(X, Left, X1, Y, Left1, X2, delmin_out(Left, Y, Left1)) → delmin_out(tree(X, Left, X1), Y, tree(X, Left1, X2))
U1(X, Left, Right, Y, Right1, delmin_out(Right, Y, Right1)) → delete_out(X, tree(X, Left, Right), tree(Y, Left, Right1))
delete_in(X, tree(X, Left, void), Left) → delete_out(X, tree(X, Left, void), Left)
delete_in(X, tree(X, void, Right), Right) → delete_out(X, tree(X, void, Right), Right)
U3(X, Y, Left, Right, Left1, delete_out(X, Left, Left1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U5(X, Y, Left, Right, Right1, delete_out(X, Right, Right1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
delete_in(x1, x2, x3)  =  delete_in(x1, x3)
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U4(x1, x2, x3, x4, x5, x6)  =  U4(x1, x5, x6)
less_in(x1, x2)  =  less_in(x1, x2)
s(x1)  =  s(x1)
U7(x1, x2, x3)  =  U7(x3)
0  =  0
less_out(x1, x2)  =  less_out
U5(x1, x2, x3, x4, x5, x6)  =  U5(x6)
U2(x1, x2, x3, x4, x5, x6)  =  U2(x1, x5, x6)
U3(x1, x2, x3, x4, x5, x6)  =  U3(x6)
U1(x1, x2, x3, x4, x5, x6)  =  U1(x6)
delmin_in(x1, x2, x3)  =  delmin_in(x2, x3)
U6(x1, x2, x3, x4, x5, x6, x7)  =  U6(x7)
void  =  void
delmin_out(x1, x2, x3)  =  delmin_out
delete_out(x1, x2, x3)  =  delete_out
DELETE_IN(x1, x2, x3)  =  DELETE_IN(x1, x3)
U71(x1, x2, x3)  =  U71(x3)
LESS_IN(x1, x2)  =  LESS_IN(x1, x2)
U51(x1, x2, x3, x4, x5, x6)  =  U51(x6)
DELMIN_IN(x1, x2, x3)  =  DELMIN_IN(x2, x3)
U21(x1, x2, x3, x4, x5, x6)  =  U21(x1, x5, x6)
U41(x1, x2, x3, x4, x5, x6)  =  U41(x1, x5, x6)
U11(x1, x2, x3, x4, x5, x6)  =  U11(x6)
U61(x1, x2, x3, x4, x5, x6, x7)  =  U61(x7)
U31(x1, x2, x3, x4, x5, x6)  =  U31(x6)

We have to consider all (P,R,Pi)-chains

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
PiDP
          ↳ DependencyGraphProof

Pi DP problem:
The TRS P consists of the following rules:

DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U41(X, Y, Left, Right, Right1, less_in(Y, X))
DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → LESS_IN(Y, X)
LESS_IN(s(X), s(Y)) → U71(X, Y, less_in(X, Y))
LESS_IN(s(X), s(Y)) → LESS_IN(X, Y)
U41(X, Y, Left, Right, Right1, less_out(Y, X)) → U51(X, Y, Left, Right, Right1, delete_in(X, Right, Right1))
U41(X, Y, Left, Right, Right1, less_out(Y, X)) → DELETE_IN(X, Right, Right1)
DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U21(X, Y, Left, Right, Left1, less_in(X, Y))
DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → LESS_IN(X, Y)
U21(X, Y, Left, Right, Left1, less_out(X, Y)) → U31(X, Y, Left, Right, Left1, delete_in(X, Left, Left1))
U21(X, Y, Left, Right, Left1, less_out(X, Y)) → DELETE_IN(X, Left, Left1)
DELETE_IN(X, tree(X, Left, Right), tree(Y, Left, Right1)) → U11(X, Left, Right, Y, Right1, delmin_in(Right, Y, Right1))
DELETE_IN(X, tree(X, Left, Right), tree(Y, Left, Right1)) → DELMIN_IN(Right, Y, Right1)
DELMIN_IN(tree(X, Left, X1), Y, tree(X, Left1, X2)) → U61(X, Left, X1, Y, Left1, X2, delmin_in(Left, Y, Left1))
DELMIN_IN(tree(X, Left, X1), Y, tree(X, Left1, X2)) → DELMIN_IN(Left, Y, Left1)

The TRS R consists of the following rules:

delete_in(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U4(X, Y, Left, Right, Right1, less_in(Y, X))
less_in(s(X), s(Y)) → U7(X, Y, less_in(X, Y))
less_in(0, s(X)) → less_out(0, s(X))
U7(X, Y, less_out(X, Y)) → less_out(s(X), s(Y))
U4(X, Y, Left, Right, Right1, less_out(Y, X)) → U5(X, Y, Left, Right, Right1, delete_in(X, Right, Right1))
delete_in(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U2(X, Y, Left, Right, Left1, less_in(X, Y))
U2(X, Y, Left, Right, Left1, less_out(X, Y)) → U3(X, Y, Left, Right, Left1, delete_in(X, Left, Left1))
delete_in(X, tree(X, Left, Right), tree(Y, Left, Right1)) → U1(X, Left, Right, Y, Right1, delmin_in(Right, Y, Right1))
delmin_in(tree(X, Left, X1), Y, tree(X, Left1, X2)) → U6(X, Left, X1, Y, Left1, X2, delmin_in(Left, Y, Left1))
delmin_in(tree(Y, void, Right), Y, Right) → delmin_out(tree(Y, void, Right), Y, Right)
U6(X, Left, X1, Y, Left1, X2, delmin_out(Left, Y, Left1)) → delmin_out(tree(X, Left, X1), Y, tree(X, Left1, X2))
U1(X, Left, Right, Y, Right1, delmin_out(Right, Y, Right1)) → delete_out(X, tree(X, Left, Right), tree(Y, Left, Right1))
delete_in(X, tree(X, Left, void), Left) → delete_out(X, tree(X, Left, void), Left)
delete_in(X, tree(X, void, Right), Right) → delete_out(X, tree(X, void, Right), Right)
U3(X, Y, Left, Right, Left1, delete_out(X, Left, Left1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U5(X, Y, Left, Right, Right1, delete_out(X, Right, Right1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
delete_in(x1, x2, x3)  =  delete_in(x1, x3)
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U4(x1, x2, x3, x4, x5, x6)  =  U4(x1, x5, x6)
less_in(x1, x2)  =  less_in(x1, x2)
s(x1)  =  s(x1)
U7(x1, x2, x3)  =  U7(x3)
0  =  0
less_out(x1, x2)  =  less_out
U5(x1, x2, x3, x4, x5, x6)  =  U5(x6)
U2(x1, x2, x3, x4, x5, x6)  =  U2(x1, x5, x6)
U3(x1, x2, x3, x4, x5, x6)  =  U3(x6)
U1(x1, x2, x3, x4, x5, x6)  =  U1(x6)
delmin_in(x1, x2, x3)  =  delmin_in(x2, x3)
U6(x1, x2, x3, x4, x5, x6, x7)  =  U6(x7)
void  =  void
delmin_out(x1, x2, x3)  =  delmin_out
delete_out(x1, x2, x3)  =  delete_out
DELETE_IN(x1, x2, x3)  =  DELETE_IN(x1, x3)
U71(x1, x2, x3)  =  U71(x3)
LESS_IN(x1, x2)  =  LESS_IN(x1, x2)
U51(x1, x2, x3, x4, x5, x6)  =  U51(x6)
DELMIN_IN(x1, x2, x3)  =  DELMIN_IN(x2, x3)
U21(x1, x2, x3, x4, x5, x6)  =  U21(x1, x5, x6)
U41(x1, x2, x3, x4, x5, x6)  =  U41(x1, x5, x6)
U11(x1, x2, x3, x4, x5, x6)  =  U11(x6)
U61(x1, x2, x3, x4, x5, x6, x7)  =  U61(x7)
U31(x1, x2, x3, x4, x5, x6)  =  U31(x6)

We have to consider all (P,R,Pi)-chains
The approximation of the Dependency Graph [30] contains 3 SCCs with 8 less nodes.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
PiDP
                ↳ UsableRulesProof
              ↳ PiDP
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

DELMIN_IN(tree(X, Left, X1), Y, tree(X, Left1, X2)) → DELMIN_IN(Left, Y, Left1)

The TRS R consists of the following rules:

delete_in(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U4(X, Y, Left, Right, Right1, less_in(Y, X))
less_in(s(X), s(Y)) → U7(X, Y, less_in(X, Y))
less_in(0, s(X)) → less_out(0, s(X))
U7(X, Y, less_out(X, Y)) → less_out(s(X), s(Y))
U4(X, Y, Left, Right, Right1, less_out(Y, X)) → U5(X, Y, Left, Right, Right1, delete_in(X, Right, Right1))
delete_in(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U2(X, Y, Left, Right, Left1, less_in(X, Y))
U2(X, Y, Left, Right, Left1, less_out(X, Y)) → U3(X, Y, Left, Right, Left1, delete_in(X, Left, Left1))
delete_in(X, tree(X, Left, Right), tree(Y, Left, Right1)) → U1(X, Left, Right, Y, Right1, delmin_in(Right, Y, Right1))
delmin_in(tree(X, Left, X1), Y, tree(X, Left1, X2)) → U6(X, Left, X1, Y, Left1, X2, delmin_in(Left, Y, Left1))
delmin_in(tree(Y, void, Right), Y, Right) → delmin_out(tree(Y, void, Right), Y, Right)
U6(X, Left, X1, Y, Left1, X2, delmin_out(Left, Y, Left1)) → delmin_out(tree(X, Left, X1), Y, tree(X, Left1, X2))
U1(X, Left, Right, Y, Right1, delmin_out(Right, Y, Right1)) → delete_out(X, tree(X, Left, Right), tree(Y, Left, Right1))
delete_in(X, tree(X, Left, void), Left) → delete_out(X, tree(X, Left, void), Left)
delete_in(X, tree(X, void, Right), Right) → delete_out(X, tree(X, void, Right), Right)
U3(X, Y, Left, Right, Left1, delete_out(X, Left, Left1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U5(X, Y, Left, Right, Right1, delete_out(X, Right, Right1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
delete_in(x1, x2, x3)  =  delete_in(x1, x3)
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U4(x1, x2, x3, x4, x5, x6)  =  U4(x1, x5, x6)
less_in(x1, x2)  =  less_in(x1, x2)
s(x1)  =  s(x1)
U7(x1, x2, x3)  =  U7(x3)
0  =  0
less_out(x1, x2)  =  less_out
U5(x1, x2, x3, x4, x5, x6)  =  U5(x6)
U2(x1, x2, x3, x4, x5, x6)  =  U2(x1, x5, x6)
U3(x1, x2, x3, x4, x5, x6)  =  U3(x6)
U1(x1, x2, x3, x4, x5, x6)  =  U1(x6)
delmin_in(x1, x2, x3)  =  delmin_in(x2, x3)
U6(x1, x2, x3, x4, x5, x6, x7)  =  U6(x7)
void  =  void
delmin_out(x1, x2, x3)  =  delmin_out
delete_out(x1, x2, x3)  =  delete_out
DELMIN_IN(x1, x2, x3)  =  DELMIN_IN(x2, x3)

We have to consider all (P,R,Pi)-chains
For (infinitary) constructor rewriting [30] we can delete all non-usable rules from R.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
                ↳ UsableRulesProof
PiDP
                    ↳ PiDPToQDPProof
              ↳ PiDP
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

DELMIN_IN(tree(X, Left, X1), Y, tree(X, Left1, X2)) → DELMIN_IN(Left, Y, Left1)

R is empty.
The argument filtering Pi contains the following mapping:
tree(x1, x2, x3)  =  tree(x1, x2, x3)
DELMIN_IN(x1, x2, x3)  =  DELMIN_IN(x2, x3)

We have to consider all (P,R,Pi)-chains
Transforming (infinitary) constructor rewriting Pi-DP problem [30] into ordinary QDP problem [15] by application of Pi.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
QDP
                        ↳ QDPSizeChangeProof
              ↳ PiDP
              ↳ PiDP

Q DP problem:
The TRS P consists of the following rules:

DELMIN_IN(Y, tree(X, Left1, X2)) → DELMIN_IN(Y, Left1)

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:



↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
PiDP
                ↳ UsableRulesProof
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN(s(X), s(Y)) → LESS_IN(X, Y)

The TRS R consists of the following rules:

delete_in(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U4(X, Y, Left, Right, Right1, less_in(Y, X))
less_in(s(X), s(Y)) → U7(X, Y, less_in(X, Y))
less_in(0, s(X)) → less_out(0, s(X))
U7(X, Y, less_out(X, Y)) → less_out(s(X), s(Y))
U4(X, Y, Left, Right, Right1, less_out(Y, X)) → U5(X, Y, Left, Right, Right1, delete_in(X, Right, Right1))
delete_in(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U2(X, Y, Left, Right, Left1, less_in(X, Y))
U2(X, Y, Left, Right, Left1, less_out(X, Y)) → U3(X, Y, Left, Right, Left1, delete_in(X, Left, Left1))
delete_in(X, tree(X, Left, Right), tree(Y, Left, Right1)) → U1(X, Left, Right, Y, Right1, delmin_in(Right, Y, Right1))
delmin_in(tree(X, Left, X1), Y, tree(X, Left1, X2)) → U6(X, Left, X1, Y, Left1, X2, delmin_in(Left, Y, Left1))
delmin_in(tree(Y, void, Right), Y, Right) → delmin_out(tree(Y, void, Right), Y, Right)
U6(X, Left, X1, Y, Left1, X2, delmin_out(Left, Y, Left1)) → delmin_out(tree(X, Left, X1), Y, tree(X, Left1, X2))
U1(X, Left, Right, Y, Right1, delmin_out(Right, Y, Right1)) → delete_out(X, tree(X, Left, Right), tree(Y, Left, Right1))
delete_in(X, tree(X, Left, void), Left) → delete_out(X, tree(X, Left, void), Left)
delete_in(X, tree(X, void, Right), Right) → delete_out(X, tree(X, void, Right), Right)
U3(X, Y, Left, Right, Left1, delete_out(X, Left, Left1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U5(X, Y, Left, Right, Right1, delete_out(X, Right, Right1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
delete_in(x1, x2, x3)  =  delete_in(x1, x3)
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U4(x1, x2, x3, x4, x5, x6)  =  U4(x1, x5, x6)
less_in(x1, x2)  =  less_in(x1, x2)
s(x1)  =  s(x1)
U7(x1, x2, x3)  =  U7(x3)
0  =  0
less_out(x1, x2)  =  less_out
U5(x1, x2, x3, x4, x5, x6)  =  U5(x6)
U2(x1, x2, x3, x4, x5, x6)  =  U2(x1, x5, x6)
U3(x1, x2, x3, x4, x5, x6)  =  U3(x6)
U1(x1, x2, x3, x4, x5, x6)  =  U1(x6)
delmin_in(x1, x2, x3)  =  delmin_in(x2, x3)
U6(x1, x2, x3, x4, x5, x6, x7)  =  U6(x7)
void  =  void
delmin_out(x1, x2, x3)  =  delmin_out
delete_out(x1, x2, x3)  =  delete_out
LESS_IN(x1, x2)  =  LESS_IN(x1, x2)

We have to consider all (P,R,Pi)-chains
For (infinitary) constructor rewriting [30] we can delete all non-usable rules from R.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
PiDP
                    ↳ PiDPToQDPProof
              ↳ PiDP

Pi DP problem:
The TRS P consists of the following rules:

LESS_IN(s(X), s(Y)) → LESS_IN(X, Y)

R is empty.
Pi is empty.
We have to consider all (P,R,Pi)-chains
Transforming (infinitary) constructor rewriting Pi-DP problem [30] into ordinary QDP problem [15] by application of Pi.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
QDP
                        ↳ QDPSizeChangeProof
              ↳ PiDP

Q DP problem:
The TRS P consists of the following rules:

LESS_IN(s(X), s(Y)) → LESS_IN(X, Y)

R is empty.
Q is empty.
We have to consider all (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs:



↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
PiDP
                ↳ UsableRulesProof

Pi DP problem:
The TRS P consists of the following rules:

DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U21(X, Y, Left, Right, Left1, less_in(X, Y))
U21(X, Y, Left, Right, Left1, less_out(X, Y)) → DELETE_IN(X, Left, Left1)
U41(X, Y, Left, Right, Right1, less_out(Y, X)) → DELETE_IN(X, Right, Right1)
DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U41(X, Y, Left, Right, Right1, less_in(Y, X))

The TRS R consists of the following rules:

delete_in(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U4(X, Y, Left, Right, Right1, less_in(Y, X))
less_in(s(X), s(Y)) → U7(X, Y, less_in(X, Y))
less_in(0, s(X)) → less_out(0, s(X))
U7(X, Y, less_out(X, Y)) → less_out(s(X), s(Y))
U4(X, Y, Left, Right, Right1, less_out(Y, X)) → U5(X, Y, Left, Right, Right1, delete_in(X, Right, Right1))
delete_in(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U2(X, Y, Left, Right, Left1, less_in(X, Y))
U2(X, Y, Left, Right, Left1, less_out(X, Y)) → U3(X, Y, Left, Right, Left1, delete_in(X, Left, Left1))
delete_in(X, tree(X, Left, Right), tree(Y, Left, Right1)) → U1(X, Left, Right, Y, Right1, delmin_in(Right, Y, Right1))
delmin_in(tree(X, Left, X1), Y, tree(X, Left1, X2)) → U6(X, Left, X1, Y, Left1, X2, delmin_in(Left, Y, Left1))
delmin_in(tree(Y, void, Right), Y, Right) → delmin_out(tree(Y, void, Right), Y, Right)
U6(X, Left, X1, Y, Left1, X2, delmin_out(Left, Y, Left1)) → delmin_out(tree(X, Left, X1), Y, tree(X, Left1, X2))
U1(X, Left, Right, Y, Right1, delmin_out(Right, Y, Right1)) → delete_out(X, tree(X, Left, Right), tree(Y, Left, Right1))
delete_in(X, tree(X, Left, void), Left) → delete_out(X, tree(X, Left, void), Left)
delete_in(X, tree(X, void, Right), Right) → delete_out(X, tree(X, void, Right), Right)
U3(X, Y, Left, Right, Left1, delete_out(X, Left, Left1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left1, Right))
U5(X, Y, Left, Right, Right1, delete_out(X, Right, Right1)) → delete_out(X, tree(Y, Left, Right), tree(Y, Left, Right1))

The argument filtering Pi contains the following mapping:
delete_in(x1, x2, x3)  =  delete_in(x1, x3)
tree(x1, x2, x3)  =  tree(x1, x2, x3)
U4(x1, x2, x3, x4, x5, x6)  =  U4(x1, x5, x6)
less_in(x1, x2)  =  less_in(x1, x2)
s(x1)  =  s(x1)
U7(x1, x2, x3)  =  U7(x3)
0  =  0
less_out(x1, x2)  =  less_out
U5(x1, x2, x3, x4, x5, x6)  =  U5(x6)
U2(x1, x2, x3, x4, x5, x6)  =  U2(x1, x5, x6)
U3(x1, x2, x3, x4, x5, x6)  =  U3(x6)
U1(x1, x2, x3, x4, x5, x6)  =  U1(x6)
delmin_in(x1, x2, x3)  =  delmin_in(x2, x3)
U6(x1, x2, x3, x4, x5, x6, x7)  =  U6(x7)
void  =  void
delmin_out(x1, x2, x3)  =  delmin_out
delete_out(x1, x2, x3)  =  delete_out
DELETE_IN(x1, x2, x3)  =  DELETE_IN(x1, x3)
U21(x1, x2, x3, x4, x5, x6)  =  U21(x1, x5, x6)
U41(x1, x2, x3, x4, x5, x6)  =  U41(x1, x5, x6)

We have to consider all (P,R,Pi)-chains
For (infinitary) constructor rewriting [30] we can delete all non-usable rules from R.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
PiDP
                    ↳ PiDPToQDPProof

Pi DP problem:
The TRS P consists of the following rules:

DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left1, Right)) → U21(X, Y, Left, Right, Left1, less_in(X, Y))
U21(X, Y, Left, Right, Left1, less_out(X, Y)) → DELETE_IN(X, Left, Left1)
U41(X, Y, Left, Right, Right1, less_out(Y, X)) → DELETE_IN(X, Right, Right1)
DELETE_IN(X, tree(Y, Left, Right), tree(Y, Left, Right1)) → U41(X, Y, Left, Right, Right1, less_in(Y, X))

The TRS R consists of the following rules:

less_in(s(X), s(Y)) → U7(X, Y, less_in(X, Y))
less_in(0, s(X)) → less_out(0, s(X))
U7(X, Y, less_out(X, Y)) → less_out(s(X), s(Y))

The argument filtering Pi contains the following mapping:
tree(x1, x2, x3)  =  tree(x1, x2, x3)
less_in(x1, x2)  =  less_in(x1, x2)
s(x1)  =  s(x1)
U7(x1, x2, x3)  =  U7(x3)
0  =  0
less_out(x1, x2)  =  less_out
DELETE_IN(x1, x2, x3)  =  DELETE_IN(x1, x3)
U21(x1, x2, x3, x4, x5, x6)  =  U21(x1, x5, x6)
U41(x1, x2, x3, x4, x5, x6)  =  U41(x1, x5, x6)

We have to consider all (P,R,Pi)-chains
Transforming (infinitary) constructor rewriting Pi-DP problem [30] into ordinary QDP problem [15] by application of Pi.

↳ Prolog
  ↳ PrologToPiTRSProof
    ↳ PiTRS
      ↳ DependencyPairsProof
        ↳ PiDP
          ↳ DependencyGraphProof
            ↳ AND
              ↳ PiDP
              ↳ PiDP
              ↳ PiDP
                ↳ UsableRulesProof
                  ↳ PiDP
                    ↳ PiDPToQDPProof
QDP
                        ↳ QDPSizeChangeProof

Q DP problem:
The TRS P consists of the following rules:

DELETE_IN(X, tree(Y, Left, Right1)) → U41(X, Right1, less_in(Y, X))
U21(X, Left1, less_out) → DELETE_IN(X, Left1)
U41(X, Right1, less_out) → DELETE_IN(X, Right1)
DELETE_IN(X, tree(Y, Left1, Right)) → U21(X, Left1, less_in(X, Y))

The TRS R consists of the following rules:

less_in(s(X), s(Y)) → U7(less_in(X, Y))
less_in(0, s(X)) → less_out
U7(less_out) → less_out

The set Q consists of the following terms:

less_in(x0, x1)
U7(x0)

We have to consider all (P,Q,R)-chains.
By using the subterm criterion [20] together with the size-change analysis [32] we have proven that there are no infinite chains for this DP problem.

From the DPs we obtained the following set of size-change graphs: